home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2007 April
/
CHIP CD (4 - 2007).iso
/
beeld
/
3d
/
ArtOfIllusion24-Mac.dmg
/
Art of Illusion
/
ArtOfIllusion.jar
/
bsh
/
commands
/
cp.bsh
< prev
next >
Wrap
Text File
|
2005-05-23
|
474b
|
21 lines
/**
Copy a file (like Unix cp).
*/
bsh.help.cp = "usage: cp( fromFile, toFile )";
cp( String fromFile, String toFile )
{
this.from = pathToFile( fromFile );
this.to = pathToFile( toFile );
this.in = new BufferedInputStream( new FileInputStream( from ) );
this.out = new BufferedOutputStream( new FileOutputStream( to ) );
byte [] buff = new byte [ 32*1024 ];
while ( (len = in.read( buff )) > 0 )
out.write( buff, 0, len );
in.close();
out.close();
}